home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue72 / terminal / MainForm.dfm next >
Encoding:
Text File  |  2001-06-03  |  8.3 KB  |  344 lines

  1. object TSIMainForm: TTSIMainForm
  2.   Left = 337
  3.   Top = 107
  4.   Width = 357
  5.   Height = 279
  6.   Caption = 'Terminal Services Information'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   OldCreateOrder = False
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object PageControl1: TPageControl
  19.     Left = 0
  20.     Top = 0
  21.     Width = 349
  22.     Height = 233
  23.     ActivePage = TabSheet1
  24.     Align = alClient
  25.     TabOrder = 0
  26.     object TabSheet1: TTabSheet
  27.       Caption = 'System Information'
  28.       object SysInfo: TMemo
  29.         Left = 0
  30.         Top = 0
  31.         Width = 341
  32.         Height = 205
  33.         Align = alClient
  34.         Lines.Strings = (
  35.           'Please wait...')
  36.         ScrollBars = ssVertical
  37.         TabOrder = 0
  38.       end
  39.     end
  40.     object TabSheet2: TTabSheet
  41.       Caption = 'Sessions'
  42.       ImageIndex = 1
  43.       object GroupBox1: TGroupBox
  44.         Left = 2
  45.         Top = 0
  46.         Width = 337
  47.         Height = 65
  48.         Anchors = [akLeft, akTop, akRight]
  49.         Caption = 'Process And Session IDs'
  50.         TabOrder = 0
  51.         object Label1: TLabel
  52.           Left = 8
  53.           Top = 16
  54.           Width = 92
  55.           Height = 13
  56.           Caption = 'Current Process ID:'
  57.         end
  58.         object Label2: TLabel
  59.           Left = 128
  60.           Top = 16
  61.           Width = 95
  62.           Height = 13
  63.           Caption = 'Convert Process ID:'
  64.         end
  65.         object CurrentProcessID: TEdit
  66.           Left = 8
  67.           Top = 32
  68.           Width = 97
  69.           Height = 21
  70.           Color = clBtnFace
  71.           ReadOnly = True
  72.           TabOrder = 0
  73.           Text = 'CurrentProcessID'
  74.         end
  75.         object ConvertProcessID: TEdit
  76.           Left = 128
  77.           Top = 32
  78.           Width = 97
  79.           Height = 21
  80.           TabOrder = 1
  81.         end
  82.         object ShowSession: TButton
  83.           Left = 232
  84.           Top = 29
  85.           Width = 97
  86.           Height = 25
  87.           Caption = 'Show Session ID'
  88.           TabOrder = 2
  89.           OnClick = ShowSessionClick
  90.         end
  91.       end
  92.       object GroupBox2: TGroupBox
  93.         Left = 2
  94.         Top = 66
  95.         Width = 337
  96.         Height = 135
  97.         Anchors = [akLeft, akTop, akRight, akBottom]
  98.         Caption = 'Sessions'
  99.         TabOrder = 1
  100.         object TSSessions: TListView
  101.           Left = 8
  102.           Top = 16
  103.           Width = 320
  104.           Height = 81
  105.           Anchors = [akLeft, akTop, akRight, akBottom]
  106.           Columns = <
  107.             item
  108.               Caption = 'Session'
  109.             end
  110.             item
  111.               Caption = 'Window Station'
  112.               Width = 150
  113.             end
  114.             item
  115.               Caption = 'State'
  116.               Width = 90
  117.             end>
  118.           RowSelect = True
  119.           TabOrder = 0
  120.           ViewStyle = vsReport
  121.         end
  122.         object ShowSessionInfo: TButton
  123.           Left = 8
  124.           Top = 104
  125.           Width = 153
  126.           Height = 25
  127.           Anchors = [akLeft, akBottom]
  128.           Caption = 'Show Session Information'
  129.           TabOrder = 1
  130.           OnClick = ShowSessionInfoClick
  131.         end
  132.         object RefreshSessions: TCheckBox
  133.           Left = 225
  134.           Top = -1
  135.           Width = 104
  136.           Height = 17
  137.           Anchors = [akTop, akRight]
  138.           Caption = 'Refresh Sessions'
  139.           Checked = True
  140.           State = cbChecked
  141.           TabOrder = 2
  142.         end
  143.         object SendMsgToSession: TButton
  144.           Left = 176
  145.           Top = 104
  146.           Width = 155
  147.           Height = 25
  148.           Anchors = [akLeft, akBottom]
  149.           Caption = 'Send Message To Session'
  150.           TabOrder = 3
  151.           OnClick = SendMsgToSessionClick
  152.         end
  153.       end
  154.     end
  155.     object TabSheet3: TTabSheet
  156.       Caption = 'Processes'
  157.       ImageIndex = 2
  158.       object ProcessCount: TLabel
  159.         Left = 88
  160.         Top = 181
  161.         Width = 103
  162.         Height = 13
  163.         Anchors = [akLeft, akBottom]
  164.         Caption = '(no processes shown)'
  165.       end
  166.       object ProcessList: TListView
  167.         Left = 0
  168.         Top = 0
  169.         Width = 341
  170.         Height = 169
  171.         Anchors = [akLeft, akTop, akRight, akBottom]
  172.         Columns = <
  173.           item
  174.             Caption = 'Process ID'
  175.             Width = 65
  176.           end
  177.           item
  178.             Caption = 'Session ID'
  179.             Width = 65
  180.           end
  181.           item
  182.             Caption = 'Process Name'
  183.             Width = 110
  184.           end
  185.           item
  186.             Caption = 'User Name'
  187.             Width = 80
  188.           end>
  189.         RowSelect = True
  190.         TabOrder = 0
  191.         ViewStyle = vsReport
  192.       end
  193.       object RefreshProcesses: TButton
  194.         Left = 0
  195.         Top = 176
  196.         Width = 75
  197.         Height = 25
  198.         Anchors = [akLeft, akBottom]
  199.         Caption = 'Refresh'
  200.         TabOrder = 1
  201.         OnClick = RefreshProcessesClick
  202.       end
  203.     end
  204.     object TabSheet4: TTabSheet
  205.       Caption = 'Resources'
  206.       ImageIndex = 3
  207.       object GroupBox3: TGroupBox
  208.         Left = 0
  209.         Top = 0
  210.         Width = 160
  211.         Height = 201
  212.         Caption = 'Win32 Object'
  213.         TabOrder = 0
  214.         object Label3: TLabel
  215.           Left = 12
  216.           Top = 86
  217.           Width = 59
  218.           Height = 13
  219.           Caption = 'Name prefix:'
  220.         end
  221.         object CreateMutex: TButton
  222.           Left = 12
  223.           Top = 22
  224.           Width = 129
  225.           Height = 25
  226.           Caption = 'Create Mutex Object'
  227.           TabOrder = 0
  228.           OnClick = CreateMutexClick
  229.         end
  230.         object OpenMutex: TButton
  231.           Left = 12
  232.           Top = 54
  233.           Width = 129
  234.           Height = 25
  235.           Caption = 'Open Mutex Object'
  236.           TabOrder = 1
  237.           OnClick = OpenMutexClick
  238.         end
  239.         object MutexNamePrefix: TComboBox
  240.           Left = 12
  241.           Top = 102
  242.           Width = 129
  243.           Height = 21
  244.           ItemHeight = 13
  245.           TabOrder = 2
  246.           Items.Strings = (
  247.             ''
  248.             'Local\'
  249.             'Global\')
  250.         end
  251.         object CloseMutex: TButton
  252.           Left = 12
  253.           Top = 142
  254.           Width = 129
  255.           Height = 25
  256.           Caption = 'Close Mutex Object'
  257.           TabOrder = 3
  258.           OnClick = CloseMutexClick
  259.         end
  260.       end
  261.       object GroupBox4: TGroupBox
  262.         Left = 168
  263.         Top = 0
  264.         Width = 160
  265.         Height = 201
  266.         Caption = 'BDE Database Object'
  267.         TabOrder = 1
  268.         object Label4: TLabel
  269.           Left = 12
  270.           Top = 22
  271.           Width = 73
  272.           Height = 13
  273.           Caption = 'Database alias:'
  274.         end
  275.         object Label5: TLabel
  276.           Left = 12
  277.           Top = 68
  278.           Width = 102
  279.           Height = 13
  280.           Caption = 'SQL query statement:'
  281.         end
  282.         object BDEAlias: TComboBox
  283.           Left = 12
  284.           Top = 38
  285.           Width = 133
  286.           Height = 21
  287.           ItemHeight = 13
  288.           TabOrder = 0
  289.           Items.Strings = (
  290.             'DBDEMOS')
  291.         end
  292.         object SQLStatement: TMemo
  293.           Left = 12
  294.           Top = 84
  295.           Width = 133
  296.           Height = 77
  297.           Lines.Strings = (
  298.             'SELECT *'
  299.             'FROM biolife')
  300.           TabOrder = 1
  301.         end
  302.         object ExecuteQuery: TButton
  303.           Left = 12
  304.           Top = 168
  305.           Width = 133
  306.           Height = 25
  307.           Caption = 'Execute Query'
  308.           TabOrder = 2
  309.           OnClick = ExecuteQueryClick
  310.         end
  311.       end
  312.     end
  313.   end
  314.   object MainMenu1: TMainMenu
  315.     Left = 210
  316.     Top = 144
  317.     object Information1: TMenuItem
  318.       Caption = '&Information'
  319.       object RefreshSystemInfo1: TMenuItem
  320.         Caption = '&Refresh System Info'
  321.         ShortCut = 16466
  322.         OnClick = RefreshSystemInfo1Click
  323.       end
  324.       object N1: TMenuItem
  325.         Caption = '-'
  326.       end
  327.       object Exit1: TMenuItem
  328.         Caption = 'E&xit'
  329.         ShortCut = 32883
  330.         OnClick = Exit1Click
  331.       end
  332.     end
  333.   end
  334.   object SessionRefreshTimer: TTimer
  335.     OnTimer = SessionRefreshTimerTimer
  336.     Left = 178
  337.     Top = 144
  338.   end
  339.   object SQLQuery: TQuery
  340.     Left = 244
  341.     Top = 144
  342.   end
  343. end
  344.